C 언어 날짜및시간을문자열로출력(ctime).c

#include <stdio.h>
#include <time.h>	//ctime()

void main(void)
{
	//초 단위
	time_t now;

	//현재까지 초단위 반환
	time(&now);

	//현재시간 문자열 출력
	printf("현재 날짜 및 시간 : %s", ctime(&now));
}

Comments


Comments are closed